home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 183 / dpcs0503.iso / Components / Microsoft ASP / _SETUP.1 / ASPWizard.jar / asp / wizard / util / DataSourceDesc.class (.txt) next >
Encoding:
Java Class File  |  1998-11-20  |  763 b   |  24 lines

  1. package asp.wizard.util;
  2.  
  3. public class DataSourceDesc {
  4.    private String _name;
  5.    private String _type;
  6.  
  7.    DataSourceDesc(String name, String type) {
  8.       this._name = name;
  9.       this._type = type;
  10.    }
  11.  
  12.    public String getName() {
  13.       return this._name;
  14.    }
  15.  
  16.    public String getType() {
  17.       return this._type;
  18.    }
  19.  
  20.    public String toString() {
  21.       return this.getName();
  22.    }
  23. }
  24.